type net.notFoundError

5 uses

	net (current package)
		net.go#L649: 	errNoSuchHost  = &notFoundError{"no such host"}
		net.go#L650: 	errUnknownPort = &notFoundError{"unknown port"}
		net.go#L655: type notFoundError struct{ s string }
		net.go#L657: func (e *notFoundError) Error() string { return e.s }
		net.go#L702: 	_, isNotFound := err.(*notFoundError)